home *** CD-ROM | disk | FTP | other *** search
/ 500 MB Nyheder Direkte fra Internet 9 / 500 MB nyheder direkte fra internet CD 9.iso / start / zipped / win / visbasic / playwavz.exe / ABOUT.FRM next >
Text File  |  1995-12-02  |  2KB  |  77 lines

  1. VERSION 2.00
  2. Begin Form About 
  3.    Caption         =   "About SimplWAV"
  4.    ClientHeight    =   3690
  5.    ClientLeft      =   1665
  6.    ClientTop       =   2280
  7.    ClientWidth     =   5430
  8.    Height          =   4095
  9.    Left            =   1605
  10.    LinkTopic       =   "Form2"
  11.    ScaleHeight     =   3690
  12.    ScaleWidth      =   5430
  13.    Top             =   1935
  14.    Width           =   5550
  15.    Begin TextBox Text2 
  16.       Height          =   975
  17.       Left            =   120
  18.       MultiLine       =   -1  'True
  19.       TabIndex        =   4
  20.       Text            =   "Yes, there are probably many better ways of doing this,  but I am a real beginner.  I just wanted to keep it simple, so don't be too hard on me for making mistakes with my methods.  Hope this helps other newbies."
  21.       Top             =   1800
  22.       Width           =   5175
  23.    End
  24.    Begin CommandButton Command1 
  25.       Caption         =   "OK"
  26.       Height          =   495
  27.       Left            =   1800
  28.       TabIndex        =   0
  29.       Top             =   3000
  30.       Width           =   1815
  31.    End
  32.    Begin Label Label4 
  33.       Alignment       =   2  'Center
  34.       Caption         =   "76622, 2407"
  35.       Height          =   195
  36.       Left            =   885
  37.       TabIndex        =   3
  38.       Top             =   1200
  39.       Width           =   3735
  40.    End
  41.    Begin Label Label1 
  42.       Alignment       =   2  'Center
  43.       AutoSize        =   -1  'True
  44.       Caption         =   "Simple WAV Player"
  45.       FontBold        =   -1  'True
  46.       FontItalic      =   0   'False
  47.       FontName        =   "Times New Roman"
  48.       FontSize        =   24
  49.       FontStrikethru  =   0   'False
  50.       FontUnderline   =   0   'False
  51.       Height          =   540
  52.       Left            =   600
  53.       TabIndex        =   2
  54.       Top             =   120
  55.       Width           =   4185
  56.    End
  57.    Begin Label Label2 
  58.       Alignment       =   2  'Center
  59.       Caption         =   "By Kenn Crowell - No Rights Reserved"
  60.       Height          =   255
  61.       Left            =   885
  62.       TabIndex        =   1
  63.       Top             =   840
  64.       Width           =   3735
  65.    End
  66. End
  67. Option Explicit
  68.  
  69. Sub Command1_Click ()
  70.     Unload Me
  71. End Sub
  72.  
  73. Sub Form_Load ()
  74.     CenterForm About
  75. End Sub
  76.  
  77.